home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 February: Tool Chest / Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso / Sample Code / AOCE Sample Code / PowerTalk Access Modules / Sample PMSAM / PMSAM Framework / RoboSamSlot / Globals.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-28  |  785 b   |  44 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        Globals.h
  3.  
  4.     Contains:    xxx put contents here xxx
  5.  
  6.     Written by:    Tim Harnett
  7.  
  8.     Copyright:    © 1994 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.          <3>     10/6/94    TMH        add gApplicationThread
  13.          <2>     9/21/94    TMH        got rid of some useless assert junk
  14.          <1>     9/20/94    TMH        Abandon RoadsideRest embrace Mercury
  15.                   4/5/94    TMH        xxx put comment here xxx
  16.  
  17.     To Do:
  18. */
  19.  
  20. #ifndef __Globals__
  21. #define __Globals__
  22.  
  23. #ifndef __OCE__
  24. #include "OCE.h"
  25. #endif
  26.  
  27. #ifndef __OCEAUTHDIR__
  28. #include "OCEAuthDir.h"
  29. #endif
  30.  
  31. class TApplication;
  32. class TCooperativeThread;
  33. class CPackedRLI;
  34.  
  35. extern AuthIdentity        gIdentity;
  36. extern TApplication*    gApplication;
  37. extern short            gKeyChainDSRefnum;
  38.  
  39. extern Boolean            gDone;
  40.  
  41. extern TCooperativeThread*    gCurrentThread;
  42.  
  43. #endif
  44.